docs: clarify that -om is required to activate output modules (#1285) - #3137
Closed
anupddas wants to merge 1 commit into
Closed
docs: clarify that -om is required to activate output modules (#1285)#3137anupddas wants to merge 1 commit into
anupddas wants to merge 1 commit into
Conversation
…anternsecurity#1285) Users were setting webhook_url in bbot.yml for Discord/Slack/Teams and getting no output with no error, because -om was never passed. - Adds a warning admonition at the top of Output Modules with a clear example - Rewrites the Discord/Slack/Teams section to lead with -om command-line examples for all three services - Adds output_modules: to all preset YAML snippets so every example is self-contained and correct
Contributor
|
All contributors have signed the CLA ✍️ ✅ |
Author
|
I have read the CLA Document and I hereby sign the CLA |
Author
|
recheck |
bls-cla-bot Bot
added a commit
to blacklanternsecurity/CLA
that referenced
this pull request
May 29, 2026
Author
|
recheck |
Collaborator
|
Hi, while you are correct that setting it with -om makes everything work, you can actually set it in the preset. You'd just use: output_modules: [discord] (for example) in the preset There are some things that to change about this behavior, though, which will be addressed before 3.0 is released. For example, currently, if you set output_modules: [webhook] - you'd still get the default with it ['csv', 'discord', 'json', 'python', 'txt'] This is confusing and needs to change. |
Collaborator
|
relevant: #3146 |
Collaborator
|
closing in favor of #3147 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1285
Problem
Users configuring Discord/Slack/Teams output modules by setting webhook_url in bbot.yml would get no output and no error — because -om was never passed. The docs showed config-only examples without making the -om requirement clear.
Changes
warningadmonition directly under the Output Modules heading with a example and the preset pattern as the permanent solutionoutput_modules:to all preset YAML snippets in the section so every copy-paste example works correctly on its own